Formatting a Date
Instead of this
date.toLocaleString()
Do this
fmt = DateFormat.getDateTimeInstance();
fmt.format(date);

Return to Tracks